home *** CD-ROM | disk | FTP | other *** search
- //
- // **************************************************************
- // JdeBP C++ Library Routines General Public Licence v1.00
- // Copyright (c) 1991,1992 Jonathan de Boyne Pollard
- // **************************************************************
- //
-
- #if !defined(___OMODE_H_INCLUDED)
- #include <_omode.h>
- #endif
-
- //
- // These are for compatibility with Microsoft C. The correct prefix for
- // any flag passed in the oflag parameter to open() is O_, and the correct
- // place to find it is in <fcntl.h>.
- //
-
- #define SH_COMPAT _O_COMPAT
- #define SH_DENYRW _O_DENYALL
- #define SH_DENYWR _O_DENYWRITE
- #define SH_DENYRD _O_DENYREAD
- #define SH_DENYNO _O_DENYNONE
-